home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pull217.arc / PULLDWN.DEF < prev    next >
Text File  |  1990-09-19  |  7KB  |  294 lines

  1. '-----------------------------------------------------------------------------
  2. ' PULLDWN.DEF file for syntax example.   PullDown v2.15 (c) MicroDynamics 1990
  3. ' 1445 Mensch Lane, Gilbertsville, PA  19525  Reg. $20, Diskettes Extra.
  4. ' GEnie: S.HORTON1, EXEC-PC, CompuServe 72010,2546
  5. ' BBS Technical Support (215)-623-6203 with an HST node available.
  6. ' Registrations also available through Dealer/Consultants authorized by
  7. ' MicroDynamics.  Command line registration system means unlimited upgrades.
  8. ' NOTE: Clicking the PULLDOWN name on the bottom row always loads this file.
  9. '
  10. ' User-defined help for all options on [F1] keypress defined in PULLDWN.HLP
  11. '
  12. ' See QREF.DOC for command summary sheet, and PULL215.DOC for extensive
  13. ' discussion of both the structure and keywords available.
  14. '-----------------------------------------------------------------------------
  15. DEF
  16. %Applications
  17.  
  18.      '01234567890
  19.      %Quattro/Pro
  20.      HI=0
  21.           +echo off
  22.           +cls
  23.           +c:
  24.           +cd\qpro
  25.           +q
  26.           +PULLWN.BAT
  27.  
  28.      '01234567890
  29.      %Lotus 1-2-3 v2.20
  30.      HI=0
  31.           +echo off
  32.           +cls
  33.           +c:
  34.           +cd\rel22
  35.           +123
  36.           +pulldwn.bat
  37.  
  38.      '01234567890123456
  39.      %Lotus 1-2-3 v3.0
  40.      '            ^-------- Highlight the 3
  41.      HI=13
  42.           +d:
  43.           +cd\123r3
  44.           +123
  45.           +pulldwn
  46.  
  47.      '-----------------------------------------------------------------------------
  48.      ' Magellan "clears the stack" which means that unless you pull a little trick
  49.      ' you will end up in DOS after invoking it from within a batch file.  i.e.
  50.      ' the PC never reaches the end of your temporary batch file and thus never
  51.      ' gets back into pulldwn.........  use COMMAND/C just before the command used
  52.      ' to execute in order to avoid this.  (A user has suggest BAT2EXE from PCMag
  53.      ' as another workaround...)
  54.      '
  55.      '01234567890123
  56.      %Lotus Magellan
  57.      HI=6
  58.           +COMMAND/C mg
  59.           +pulldwn
  60.  
  61.      '01234567890
  62.      %MS Word 5.0
  63.      HI=8
  64.           ? Enter File to Load, [ENTER] for None:
  65.           +c:
  66.           +cd\word5
  67.           +word %1
  68.           +pulldwn
  69.  
  70.      '01234567890
  71.      %Word Perfect 5.1
  72.      HI=5
  73.           ?Enter File to Load, [ENTER] for None:
  74.           +c:
  75.           +cd\wp51 %1
  76.           +wp
  77.           +pulldwn
  78.  
  79.      ' Draw a horizontal bar, unselectable
  80.      %-
  81.  
  82.      '01234567890
  83.      %Harvard Graphics
  84.      HI=8
  85.           +echo off
  86.           +cls
  87.           +c:
  88.           +cd\harvard
  89.           +hg
  90.           +pulldwn
  91.  
  92.      '01234567890
  93.      %Windows v3.0
  94.      HI=0
  95.           ?Enter Application to Run:
  96.           +c:
  97.           +cd\win
  98.           +win %1
  99.           +pulldwn
  100.  
  101.      ' Another horizontal line...
  102.      %-
  103.  
  104.      '01234567890
  105.      %Advanced Examples
  106.      HI=9
  107.           @ADVANCED.DEF
  108.           ' @ Branches to another menu.
  109.  
  110.      %Windows Applications
  111.      HI=0
  112.           @WINDOWS.DEF
  113.  
  114.  
  115. ' Second menu choice across the top.  You get 10 of these max. with a toal
  116. ' string width of 58 characters.  Anything too long PullDown will reject.
  117. '-----------------------------------------------------------------------------
  118. DEF
  119. %Utilities
  120.  
  121.      '01234567890
  122.      %PCSHELL (PCTOOLS)
  123.      HI=0
  124.           ? Enter Drive to Work on:
  125.           +pcshell %1
  126.           +pulldwn
  127.  
  128.      '01234567
  129.      %Norton Advanced
  130.      HI=7
  131.           +nu
  132.           +pulldwn
  133.  
  134.      '01234567890
  135.      %Undelete
  136.           ? Undelete what path?
  137.           +undelete %1
  138.           +pulldwn
  139.  
  140.      '01234567890
  141.      %XCONFIG
  142.           +xconfig
  143.           +pulldwn
  144.           ' Modifies your CONFIG.SYS and AUTOEXEC.BAT files from a central menu sys.
  145.           ' Also from MicroDynamics as PD Software.
  146.  
  147.      %-
  148.  
  149.      '01234567890
  150.      %Disk Optimizer
  151.      HI=5
  152.           ? Which Drive?
  153.           +optimize %1
  154.           +pulldwn
  155.  
  156.      %FastBack Plus
  157.           +c:
  158.           +cd\fastback
  159.           +fb
  160.           +pulldwn
  161.  
  162.      %Browse a Text File
  163.           OKBOX=This option uses the FREE VFILE.EXE utility with PullDown
  164.           ?Enter Filename to browse:
  165.           +vfile %1
  166.           +pulldwn
  167.      %-
  168.  
  169.      %Format a Disk
  170.           ? Enter Drive Letter to Format:
  171.           +format %1
  172.           +pulldwn
  173.  
  174.      %Shut Down the System
  175.           OKBOX=Turn Power OFF after completing this process.
  176.           +MIRROR
  177.           +PARK
  178.  
  179. DEF
  180. %Programming
  181.  
  182.      '01234567890
  183.      %QuickC 2.0
  184.      HI=5
  185.           ?Enter Source to Load:
  186.           +echo off
  187.           +cls
  188.           +d:
  189.           +cd\qc2
  190.           +qc %1
  191.           +pulldwn
  192.  
  193.      '01234567890
  194.      %QBX∙BC7∙PDS
  195.      HI=1
  196.           ?Enter File to Load:
  197.           +echo off
  198.           +cls
  199.           +f:
  200.           +cd\qbx\bin
  201.           +QBX %1
  202.           +pulldwn
  203.  
  204.      %MASM
  205.           +d:
  206.           +cd\masm
  207.           +masm
  208.           +pulldwn
  209.  
  210.  
  211. DEF
  212. %Communications
  213.  
  214.      %Qmodem 4.1B
  215.           +e:
  216.           +cd\qmodem
  217.           +qmodem
  218.           +pulldwn
  219.  
  220.      %Relay Gold
  221.           +c:
  222.           +cd\relay
  223.           +RELAY
  224.           +pulldwn
  225.  
  226.      %CompuServe Information Manager
  227.           +c:
  228.           +cd\cserve
  229.           +cim
  230.           +pulldwn
  231.  
  232.  
  233.      %-
  234.  
  235.      %3270 Adapter to Mainframe
  236.           +cd\pc3270
  237.           +pc3270 t
  238.           +pulldwn
  239.  
  240.      ' CAUTION: Use of the R option on some machines will cause a crash
  241.      ' when you use ALT+ESC on top of PullDown.  Use the T option, or
  242.      ' no option at all to load the PC3270 Emulator.
  243.  
  244.  
  245.  
  246. DEF
  247. %Editor
  248.  
  249.      %Edit PULLDWN.DEF
  250.      OKBOX=This option likely requires that you have modified EDITOR.BAT
  251.           +EDITOR PULLDWN.DEF
  252.           +pulldwn
  253.  
  254.      %Edit PULLDWN.HLP
  255.      OKBOX=This option likely requires that you have modified EDITOR.BAT
  256.           +EDITOR PULLDWN.HLP
  257.           +pulldwn
  258.  
  259.      %QEDIT (With Prompt)
  260.           ? Enter Filespec to Edit, [ENTER] for None:
  261.           +QEDIT %1
  262.           +pulldwn
  263.  
  264.      %PE2 (With Prompt)
  265.           ? Enter Filespec to Edit, [ENTER] for None:
  266.           +PE2 %1
  267.           +pulldwn
  268.  
  269. ' Sample to create your own exit routine.....
  270. DEF
  271. %Exit
  272.  
  273.      %Exit to DOS
  274.      HI=1
  275.           YORN=Are you sure you want to exit?
  276.           +echo off
  277.           +cls
  278.           +echo Type PULLDWN [ENTER] to return to the menu system.
  279.           +echo.
  280.           ' echo. will echo out a blank line.
  281.           ' you could thus make it anything....
  282.           ' e.g. a special logo file etc.
  283.  
  284.      %Shell to DOS
  285.           +echo off
  286.           +cls
  287.           +echo Type EXIT [ENTER] to return.  (RAM OHD=3.5K)
  288.           +echo.
  289.           +command
  290.           +pulldwn
  291.  
  292. ' End of Sample file.  See ADVANCED.DEF for the fancy options available.
  293.  
  294.